-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle both intel & ARM RPM key #34
Conversation
roles/provision/tasks/Rocky.yml
Outdated
@@ -14,7 +14,7 @@ | |||
- name: Import postgresql rpm key | |||
ansible.builtin.rpm_key: | |||
state: present | |||
key: "{{ postgresql_rpm_gpg_key_pgdg }}" | |||
key: "{{ postgresql_rpm_gpg_key_pgdg[ansible_architecture] }}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is tied to UCL-MIRSG/ansible-collection-xnat#18
roles/postgresql/README.md
Outdated
| `postgresql_use_ssl` | Whether to use SSL | | ||
| Name | Description | | ||
| ------------------------------------ | ------------------------------------------------------------------- | | ||
| `postgresql_rpm_gpg_key_pgdg_x86_64` | URL from which to download the RPM GPP key; not needed for CentOS 7 | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Technically, there are two... Do we need to document both?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes please
Tests now passing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice!
No description provided.